← Back to Stormify Documentation

PagedList

Column-based lazy paginated list view of entities of type T.

This is the JVM / Android entry point and provides two constructors: one taking a Kotlin KClass (preferred from Kotlin code) and one taking a Java Class (preferred from Java code).

Construction does not require a Stormify instance — attach one via Stormify.attach after construction, or register a Stormify.defaultInstance and the list will pick it up on first use.

See PagedListBase for the full API (filtering, sorting, pagination, etc.).

Constructors

Link copied to clipboard
constructor(classType: KClass<T>)

Construct for the given Kotlin class.

constructor(entityClass: Class<T>)

Construct for the given Java class — the Java-friendly constructor.

Types

Link copied to clipboard
object Companion

Java-facing re-export of PagedListBase.defaultInputParser.